HackSussex
HackSussex
  • 16
  • 952 726
Why sponsor us? HackSussex
Why sponsor HackSussex? Don't let us tell you! Hear from some of our previous sponsors about their experience and what there is to be gained from collaborating with us!
Email us at: contact@hacksussex.com
มุมมอง: 225

วีดีโอ

HackSussex 2024 Hackathon Highlight Reel
มุมมอง 254หลายเดือนก่อน
HackSussex's annual hackathon that took place 17th-18th February 2024 www.hacksussex.com/ HackSussex is the annual hackathon that takes place at the University of Sussex, UK. Every year students from across the country come together to work on new projects over 24 hours and compete in their choice of a range of challenges for fabulous prizes, all while enjoying games, workshops, talks, free foo...
AI Won't Replace You: Tech Insights with Dylan Beattie - HackSussex Podcast #1
มุมมอง 1.1K5 หลายเดือนก่อน
Join us for the debut episode of the Hack Sussex podcast as we sit down with Dylan Beattie, a renowned software engineer and development consultant. Dylan shares his journey from tinkering with 8-bit computers in his youth to becoming a leading figure in software development and architecture. He discusses his varied career, including his time as CTO of an events company and his pivot to indepen...
HackSussex 2023 Live Full Show
มุมมอง 2.6Kปีที่แล้ว
HackSussex is the annual hackathon that takes place at the University of Sussex, UK. Every year students from across the country come together to work on new projects over 24 hours and compete in their choice of a range of challenges for fabulous prizes, all while enjoying games, workshops, talks, free food, and more. The return of HackSussex after being postponed for 3 years we bring you HackS...
HackSussex 2023
มุมมอง 5Kปีที่แล้ว
HackSussex's annual hackathon that took place 18th-19th February 2023 www.hacksussex.com/ HackSussex is the annual hackathon that takes place at the University of Sussex, UK. Every year students from across the country come together to work on new projects over 24 hours and compete in their choice of a range of challenges for fabulous prizes, all while enjoying games, workshops, talks, free foo...
HackSussex Coders' Cup 2022
มุมมอง 2.4K2 ปีที่แล้ว
Took place June 1st 2022 in the MTL Studios, Sussex University. Director - Elias Lassalle Producer - Tom Harwood Tournament Manager - Jude Birch Presenters - Josh Kybett, Jack Speat Participants - Layton Burchell, Guy Aziz, Brandon Lodge, Antons Vasiljevs, Daniel Foulkes-Halbard, Thomas Dent, Wong Ho Lung Ryu, Kannen Joshi Vision Mixer - Coby Sharpe Graphics Operator - Tom Harwood, Louis Murphy...
HackSussex 2017
มุมมอง 1.2K7 ปีที่แล้ว
HackSussex 2017

ความคิดเห็น

  • @hikari1690
    @hikari1690 วันที่ผ่านมา

    Hmm, is this serious or meant to be a comedy thing? Cause I skipped to 41:30 ish and there's no way these guys are stuck like that... Especially the guy on the right flipping return false and true. Or am I missing something?

  • @Pergynter
    @Pergynter 2 วันที่ผ่านมา

    1:20:24 wtf is that "daddy chill" meme

  • @tawfeeq642
    @tawfeeq642 3 วันที่ผ่านมา

    Mei looks like 2007 Messi 😭😭

  • @SoumyaMajhi
    @SoumyaMajhi 3 วันที่ผ่านมา

    Awesome thing!! How do I participate in this?

  • @subhadeeproy
    @subhadeeproy 5 วันที่ผ่านมา

    Mei gg.... try to keep it simple :P

  • @TheTimeEntertainment
    @TheTimeEntertainment 6 วันที่ผ่านมา

    На первой задаче выключил. Пять методов перепробовали, хотя решение на поверхности. Выключил на моменте set.insert(). Они даже базу языка не знают. Ни алгоритмов. О чем говорить?

    • @TheTimeEntertainment
      @TheTimeEntertainment 6 วันที่ผ่านมา

      UPD: посмотрел задачи и решения. Единственное решение (,которое в любом случае ОЧЕНЬ долго не было написано) это Final Q1 2:00:55. Все остальное даже не близко решения задач. Олимпиадное программирование курит в сторонке. Уровень 800-1000 на codeforces. Плюс-минус тоже самое на литкоде в самых простых задачках. И даже не близко к всяким "Башни" с acmp, где ты можешь и решишь на питоне, но по времени не влезешь, а где-то и память нужно менеджить.

  • @Four_Kay
    @Four_Kay 12 วันที่ผ่านมา

    This is first one from you guys...😅 Veryy good.

  • @anuragmuley2301
    @anuragmuley2301 13 วันที่ผ่านมา

    In the second problem, can't we just use Sn = (n*(n+1))/2 formula? (Sn = sum of first n integers starting from 1) Basically, what I thought is, just calculate the running sum of each row, then compare it with the Sn, if answer is not equal to Sn then simply return false. Else go forward. This solution might look good but there might be some bug in this, like what if the row is [6, -6, 6], the row sum is valid, but it does not have all the integers.

  • @chamimnet
    @chamimnet 13 วันที่ผ่านมา

    i can't coding, but i love to watch this

  • @TariIkadoi
    @TariIkadoi 15 วันที่ผ่านมา

    Love competitions like this, after discovering my passion for programming but still lack at some skills I'd love to get challenged with stuffs like this. Bet somebody here can defeat Gennady Korotkevich

  • @NorthCalm
    @NorthCalm 15 วันที่ผ่านมา

    for third question, just having same characters in both the strings is enough as when we have same characters, no matter in what way they are ordered, we can always arrange them correctly by successively swapping unordered characters

  • @abacaabaca8131
    @abacaabaca8131 16 วันที่ผ่านมา

    For the second problem what is taking them so long, in python there is a method called isDigit() which can be called from a string object. Make a local list, iterate that nxn matrix, cast everything into a string and check whether it is a digit and not zero, if yes append in that list (use copy.deepcopy() to avoid any errors). Whilst in the for loop check the boolean list, do *= (1*1=1, 1*0=0, 0*0=0). If all is true then return that boolean else return false.

    • @abacaabaca8131
      @abacaabaca8131 16 วันที่ผ่านมา

      For the third problem, the commentator had already pointing out the solution. You sort both input string into a sorted array of characters, then check for every index is the character the same.

  • @PrimaDel
    @PrimaDel 18 วันที่ผ่านมา

    Is this like some sort of amateur competition? Because all of these are leetcode easy. This pales magnitudes in comparison to easiest problem from actual coding contests like ICPC or from platforms like Codeforces lmao

  • @leapton1829
    @leapton1829 18 วันที่ผ่านมา

    Food! :)

  • @thangnguyen-ho1gq
    @thangnguyen-ho1gq 19 วันที่ผ่านมา

    57:47 step 1 : function GetSquares from rectangles => step 2: function from list output for step 1 => select distric value => find maxvalue=> count value => step 3: combine all step in code. Right or not?

  • @thangnguyen-ho1gq
    @thangnguyen-ho1gq 20 วันที่ผ่านมา

    43:53 => for(int i = 0;i<= string1.lengt;i++){ if(string1.Substring(i,1)!=string2.Substring(string2.lenght-i,1)){return false} } return true;

  • @CDR-NOOB
    @CDR-NOOB 21 วันที่ผ่านมา

    So many awkward moments on this video from everyone in a funny way.

  • @intel-k8y
    @intel-k8y 21 วันที่ผ่านมา

    Hahaha the commentators are funny, their vocal inflections are random and out of sync with relevance emphasis, then I saw what they looked like 😂😂

  • @intel-k8y
    @intel-k8y 21 วันที่ผ่านมา

    Hahaha the commentators are funny, they’re vocal inflections are random and out of sync with tone, then I saw what they looked like 😂😂

  • @marcblanchard6580
    @marcblanchard6580 21 วันที่ผ่านมา

    I'm scared whenever I start solving problem, so I just. I need to stop doing that.

  • @SupremelyAverage
    @SupremelyAverage 22 วันที่ผ่านมา

    I would quit after reading second sentence of the question

  • @MrHackeur91
    @MrHackeur91 22 วันที่ผ่านมา

    Do you know if it's possible to find the test files with the instructions? so that you can do the same exercises at home x)?

  • @subratodas8709
    @subratodas8709 24 วันที่ผ่านมา

    Why the host's are not seeing each other

  • @MindVoyager3
    @MindVoyager3 24 วันที่ผ่านมา

    in the Bramble vs Jo match,why did they waste so much time.How i observed the only thing you need is to pass all of the test,so they just need to write a simple code does not matter if it is too long,right.I have 1 experience in python and i wrote a 19 line code in like 2 minutes.You do not need to complicate it and make as short as possible.And we really need more competitions like this!

  • @Furry_Lord
    @Furry_Lord 25 วันที่ผ่านมา

    see the issue with python language here is the programmer is not thought on how computers and compilers think, their code has barely any structure giving a false logic in coding. However it remains as a pretty popular language because of how simple it is to learn and quite alot of things you caan create with it kind if like a lego.

  • @abhi8146
    @abhi8146 25 วันที่ผ่านมา

    This is so nerdy , where do i apply ?

  • @BllakFoxAuto
    @BllakFoxAuto 26 วันที่ผ่านมา

    i tried first issue but i don't have test case def solution(inputs): start_path = inputs[0][0] current_path = start_path while True: next_path = [p for p in inputs if p[0] == current_path] if not next_path: break next_path = next_path[0] or None current_path = next_path[1] return current_path

  • @krunalkp1032
    @krunalkp1032 26 วันที่ผ่านมา

    All of the problems are as listed below in order (LeetCode Problems) 1436. Destination City 2133. Check if Every Row and Column Contains All Numbers 1790. Check if One String Swap Can Make Strings Equal 1725. Number Of Rectangles That Can Form The Largest Square 1753. Maximum Score From Removing Stones 2279. Maximum Bags With Full Capacity of Rocks 290. Word Pattern 2357. Make Array Zero by Subtracting Equal Amounts 1935. Maximum Number of Words You Can Type 2225. Find Players With Zero or One Losses 1338. Reduce Array Size to The Half Thank you for posting this I was also solving all the problems side by side enjoyed solving it. Surprising Moment for me, 2:00:58 Really Impressed by the way Jacopo solved it. what a technique of counting. 2:29:15 He came up really quick amazing

  • @davidpinto8406
    @davidpinto8406 27 วันที่ผ่านมา

    i would like to submit my programs to see if i can pass :c

  • @Ghanaengineer
    @Ghanaengineer 29 วันที่ผ่านมา

    Are you ever going to bring it to Ghana. We would kill for it

  • @SilasTheSilent
    @SilasTheSilent 29 วันที่ผ่านมา

    "In a proper language" ooof 🙂

  • @toonpur5874
    @toonpur5874 หลายเดือนก่อน

    damn MEI is great , She is absolute 🔥🔥🔥

  • @moszot5265
    @moszot5265 หลายเดือนก่อน

    Why the presenters look so uncomfortable? It’s like they are being force to talk😅

  • @Quantdummy
    @Quantdummy หลายเดือนก่อน

    This should be in Olympics ❤

  • @saxshiminda
    @saxshiminda หลายเดือนก่อน

    1:48:54

  • @rejietism
    @rejietism หลายเดือนก่อน

    ayoo bro this is insane

    • @PrimaDel
      @PrimaDel 18 วันที่ผ่านมา

      these are leetcode easies, cmon, people solve way harder problems much faster

  • @onesky4343
    @onesky4343 หลายเดือนก่อน

    These were pretty easy codes i guess practicing in leetcode has improved my thought process or maybe they got pressured from being on focus

    • @PrimaDel
      @PrimaDel 18 วันที่ผ่านมา

      Yes, these are like kid's play for competitive programmers who can solve tricky dp problems in 10 minutes.

  • @Barsikspit
    @Barsikspit หลายเดือนก่อน

    fun recursion for the 5th task. def solution(a,b,c): ls = sorted([a,b,c]) a = ls[-1] - 1 b = ls[1] - 1 c = ls[0] ls = sorted([a,b,c]) if ls[0] + ls[1] == 0: return 1 return 1 + solution(a, b, c )

  • @Barsikspit
    @Barsikspit หลายเดือนก่อน

    The host girl looks like the gal Mormont from GoT

  • @tonynippolei
    @tonynippolei หลายเดือนก่อน

    Where can I sign up to be a competitor? I would smoke these guys lmao

  • @itshaze834
    @itshaze834 หลายเดือนก่อน

    But like they are all slow??? what is this

    • @aquajosei5759
      @aquajosei5759 14 วันที่ผ่านมา

      Or maybe you are just too fast, it’s probably all the speed you been doing 😂

    • @itshaze834
      @itshaze834 13 วันที่ผ่านมา

      @@aquajosei5759 nah bro they take ages for the most simple things its crazy

  • @elmentiras
    @elmentiras หลายเดือนก่อน

    Lol, the commentator on the left is so bad xD

  • @corywest3071
    @corywest3071 หลายเดือนก่อน

    charisma by the buckets.....

  • @bekiraltindal9053
    @bekiraltindal9053 หลายเดือนก่อน

    Is it possible to download the test cases and program it for yourself locally like for educational purposes?

  • @samuelabrha1315
    @samuelabrha1315 หลายเดือนก่อน

    Where can I get the testing package?

  • @wasurvivor
    @wasurvivor หลายเดือนก่อน

    These questions are too easy...

  • @raulcandamil327
    @raulcandamil327 หลายเดือนก่อน

    I would love to join some programming team and share ideas. Really Im a hard worker in what I do, but currently im just dreaming to study in my free time, but I don`t know if I could learn fast, because I only have 4 hours max per day. What platform is most trust to programming learning?

  • @definitelyhuman4510
    @definitelyhuman4510 หลายเดือนก่อน

    This feels so wrong but also awesome at the same time.

  • @germanater887
    @germanater887 หลายเดือนก่อน

    R2 - G1 can be done with a simple comparison im sure: You have 3 values: find the largest value if the sum of the 2 smaller values is less than the larger, return this. else return the largest value. eg if(a+b < c) return a+b else return c

  • @AbhijeetSharma-go7bk
    @AbhijeetSharma-go7bk หลายเดือนก่อน

    Layton vs Bramble : Solution : return (max(min(a+b,c),min(a+c,b), min(b+c,a)) Jacopo vs Mei : remain = [cap - rock for cap, rock in zip(capacity, rocks)] remain.sort() count = 0 for r in remain: if additionalRocks >= r: additionalRocks -= r count += 1 else: break return count