4 kyu

Next bigger number with the same digits

11,392 of 38,923GiacomoSorbi
Description
Loading description...
Strings
Refactoring
  • Please sign in or sign up to leave a comment.
  • BigSelskiyBoss Avatar

    I decided through string slices and sorting, the complexity of the algorithm is O(n), the task itself is not difficult, you just need to understand what they want from you and how to implement it, it was very interesting, thank you!

  • Retro-Hero Avatar

    515 should equal 531 2020 should equal 2071 -1 should equal 441 -1 should equal 414

    how is this? how can I get 531 from 515 as next bigger? author are u sure tests are ok?

  • kvilnis Avatar

    I think tests are broken on golang, I pass all the random tests, but I fail 2 predetermined ones:

    Testing for 1234567890
    Expected
        <int>: 1234567980
    to equal
        <int>: 1234567908
    

    And

    Testing for 59884848459853
    Expected
        <int>: 59884848495853
    to equal
        <int>: 59884848483559
    

    I am maybe stupid, but that does not seem to be right answers at all, how is the 0 bigger than 8 and then in the second one 9 has to jump to the end?

  • cedyreck Avatar

    I thougthI understood the question , but the test don't seem to be clear , If we are supposed to rearange all the number and compare if the input is greater than all the possible permitation, please explain me this 12 ==> 21 = > Ok 513 ==> 531 => OK 2017 ==> 2071 => shouldn't 7210 ??

  • seba_blue Avatar

    tht s the third problem of this kind i found in a row! I tried to use brute force on all of 'em but it wasnt working, so i did some research and i realized these problems are more like riddle coz u gotta find a trick to solve them, they are everything but intuitive

  • joshua1904 Avatar

    i get this error: java.lang.NumberFormatException: For input string: "9876543210" I guess its because the input value is bigger than the max size of a long value. Is this my mistake or a mistake of the tests? (I use java 17)

  • nkalin Avatar

    This comment has been hidden.

  • SS-Stefanov1 Avatar

    Testing for 4977764433221000 (No brute force solutions 🙃)

    God damn it :D

  • murakaii Avatar

    this is not a kyu4

  • alrch Avatar

    This comment has been hidden.

  • FernandoDutrar Avatar

    This comment has been hidden.

  • freemorger Avatar

    7210 should equal 2071 why? 7210 is bigger than 2071. so why 7210 is incorrect?

  • ExistedGit Avatar

    This comment has been hidden.

  • arpadkorossy Avatar

    I think I have a recursive solution to this, but on very large numbers it times out. Is this kata meant to force a non-recursive solution? Or is there an error with my solution?

  • tvaganov Avatar

    Can someone clarify why for "Testing for 21529574" expected 21529547? 21529547 isn't the next bigger number. This is the previous number to 21529574. The next bigger number is 21529745. -- Thanks.

  • pinheirofabiano Avatar

    This comment has been hidden.

  • sourav-iitm Avatar

    Finally! Took me a whole day, man. Nice question. When I thought I'm very close, I later felt it's too far but it suddenly hit and I was actually very close all the time. that feeling!

  • sadcatcode Avatar

    This comment has been hidden.

  • KayleighWasTaken Avatar

    This comment has been hidden.

  • adabaja Avatar

    This comment has been hidden.

  • edgardpetre Avatar

    Good problem!

  • Suryateja 0329 Avatar

    I'm receiving an error that says "Test crashed.Caught unexpected signal: SIGSEGV (11). Invalid memory access". Is my code wrong or is there something wrong with the test case? if my code is wrong, how can i fix it?

  • KS-SenkuFan Avatar

    This comment has been hidden.

  • Lemontang Avatar

    Does anybody else have some of their results coming up as NoneTypes? Can't figure out why

  • mrdududu Avatar

    Tests is wrong My code work perfect

  • EsenDzhumaev Avatar

    C++: in random test cases values are larger than long, should input and return long long type

  • yautja Avatar

    This comment has been hidden.

  • hugerini Avatar

    Interesting task, in python I implemented generator that generates next element of permutation for those numbers. Seems to work fine but test cases are timing out after 3/4 test cases for bigger numbers. Any hints for optimazation?

  • pedrohcleal Avatar

    How can 2017 return 2071? Since 7210 is the largest number with its digits?

  • Sanakubi Avatar

    Lmao nice cheat on C++. Why it is not at least 5kuy for C++?

  • yy_tman Avatar

    This comment has been hidden.

  • yy_tman Avatar

    Something wrong with the test itself: expected:<1234567908> but was:<1234567980>

    If the expected is: 1234567980 the original should be

    1234567098 -> 1234567890

    1234567980 -> 1234569780

    1234567908 -> 1234567980

    1234567890 -> 1234567980

    None of these results with 1234567908

  • DeadInsideDi Avatar

    why function must return 2071 if the argument is 2017 (2017 ==> 2071) but function could return 2107 (2017 ==> 2107) or not?

  • soyfrien Avatar

    I have the same issue when using the Attempt button: times out at 12 seconds with the suggestion to refactor. Although I pass the Test button in 60 ms. And 12 ms on my computer, even when using numbers approaching Int64.MaxValue. Please see here for test results: https://i.imgur.com/4fsqtvg.png.

    Is it possible to see what the full test is doing?

  • whutzel89 Avatar

    There are issues with the test cases on the python end

  • leitor79 Avatar

    I think something it's wrong with C# performance. It doesn't seem right that in my environment my tests runs in less than 180ms each, 370ms all seven of them (including the big numbers ones), and that in here I get a 12000ms timeout. I mean; I'm using a laptop from 2012...

  • RunchHenryyy Avatar

    This comment has been hidden.

  • FixxxarN Avatar

    This comment has been hidden.

  • C09 Avatar

    This comment has been hidden.

  • 2loop Avatar

    Separately simple tests pass completely, but if you try to pass full tests, they fall with the wrong answer. If you run the program via clang++ on my computer, then the same tests pass and output what they ask for.

    wtf with tests on c++

  • morbius13 Avatar

    I get timed out on bigger numbers. Is it possible that my code is too slow?

  • FlickNBA Avatar

    Just when I felt I knew something I discovered I barely know anything lol, even with Google I couldn't get past 12000 ms "testing". It works now but the code is completely trash and copied from some permutation tutorial :/

  • kinire98 Avatar

    I have a question. In sample tests in Rust, the error message, says "Your result (left) didn't match the expected result (right)", and in those test is the other way: the expected result is left. I might have seen it bad or in the random tests is arranged differently, but I'm kinda confused now

  • vagabondd1 Avatar

    There's something wrong with these tests)

    From the number 2071 the maximum can be obtained 7210. From the number 144 the maximum can be obtained 441. BUT in tests i saw this: 2017 ==> 2071 and 144 ==> 414

    lmao

  • Demureaxs Avatar

    Wow that was tough, 4 months into development and that one caned my ass. Took me a good 6 hours to pass all tests. Im such a bloody noob :D

  • Starseeker1414 Avatar

    This comment has been hidden.

  • magus-1 Avatar

    Most test cases require a single swap between ONLY two digits to find the answer e.g. 123456 --> 123465

    I would suggest adding at least one base test case for this requirement e.g. 152 --> 215 (as opposed to 251, which would be the answer for an algorithm with a single digit swap)

  • lugosim93 Avatar

    There is an issue with C++ tests:

    n = 9876543210 Expected: equal to -1 Actual: 9876543210

    Clearly it shouldn't be -1

    Okay i'm stupid, should have read the instructions

  • alexeevch Avatar

    I don't understand. I write on JS. 95 tests passed, but 57 had similar errors. Example: Testing for 1861 => expected 8161 to equal 6118 Testing for 685 => expected 865 to equal 856

    6118 is definitely closer to 1861 than expected 8161 etc.

  • Sobaan Avatar

    The test results are incorrect

  • Craigels Avatar

    Attempting the challenge on python, I am receiving this response for lengthier numbers. Response: "Incorrect answer for n=123456789: 123456789 should equal 123456798"

  • Nikos96 Avatar

    Why am i getting error expected 52398665 to equal 52398566? That doesn't make sense, because 52398566 < 52398665 and we are looking for next bigger, not smaller. Meanwhile my code returns 52938665 which seems like right answer.

  • kothasrikanth Avatar

    This comment has been hidden.

  • damino312 Avatar

    Why does 10990 turn into 19009 but not into 19090? Why is 19009 bigger number than 19090. Why do we swap 9 and 0 if it is a less number (ones that at the end of the number)?

  • realnerfelitewar Avatar

    in test case 21 why its -1? whats the issue here?

  • MelonFruit Avatar

    Cool kata :p

  • arjunkahlon Avatar

    Shouldn't 2071 be 7210? Seems like the tests are wrong.

  • DarkHayk Avatar

    finally i solved this kata!) Thanks

  • hosua Avatar

    I don't get how this is possible, I'm using Heap's algorithm and I'm still getting time limit exceeded

  • dsamoob Avatar

    not understand the logic... for an example in indexes: number 9209546890550 must have 9209546895005 - to get the correct answer we need to make 2 step ( 5 - 0 and 0 - 5), number 4465 must have 4546 - to get this we need also 2 steps number 29977643211 -> 39977642211, here only one step... but if have 2 steps as in previous 2 numbers we can get smaller int for an example 31•••• etc

  • Jordanj823 Avatar

    Took alot of brainpower for this one, really tough but highly recommend.
    My first ever 4kyu too :D

  • PThorpe92 Avatar

    well I foolishly wrote all the logic for mod oper to get each individual number w/o str conv for sub 10000 numbers due to the front pg test cases not having enormous numbers. Just to realize that it's going to take a permuatation algo. Seems tough for a 4kyu

  • di1983 Avatar

    The type long is not sufficient for the test with the number 59884848459853. I had to change it to long long in order to run tests on large numbers.

  • udovr Avatar

    This comment has been hidden.

  • WebVPF Avatar

    This comment has been hidden.

  • code-rk Avatar

    My solution works correctly in clion on laptop , but when I copied my solution and tried it , I got an error: Expected: 19009 Actual: 10990. When I putting 10990 in clion , my solution returns 19009. I actually tried to copy it about 3 times and all another cases is OK, so what type of problem I have and maybe somebody knows what to do? P.S.: I also got an error/warning for using atoi(). What is atoi() problem and why I should refuse to use it?

  • saiprasad1996 Avatar

    The solution is passing all test cases, but the test results show error for in-efficient algorithm

  • mihkuno Avatar

    This comment has been hidden.

  • bagustri3 Avatar

    "Testing for 3998733210 (No brute force solutions 🙃)" what? why? theres no problem when i tryin it on other platform :')

  • m4x0n Avatar

    "Testing for 29977643211 (No brute force solutions 🙃)" - get this issue with different solutions

  • platospv Avatar

    This comment has been hidden.

  • artieevans Avatar

    This comment has been hidden.

  • hobovsky Avatar

    This comment has been hidden.

  • jelassiaymen94 Avatar

    Please add number 19 000 000 to the big numbers test. Next number is 90 000 001 (the difference is more than 70 000 000). That will be a good test for the code performance.

  • andriifeseniuk Avatar

    This comment has been hidden.

  • Enigma985 Avatar

    The author of the kata, sorry, you accidentally did not have a typo in the description, the returned value is:

    nextBigger(num: 2017) // returns 2071

    After all, the maximum integer value from a given integer value is 2017, rearranging its digits, we can get 7210.

    nextBigger(num: 2017) // returns 7210

  • 1LifeLess Avatar

    This comment has been hidden.

  • KayleighWasTaken Avatar
  • HussainH Avatar

    This comment has been hidden.

  • rezabungel Avatar

    This comment has been hidden.

  • anoosm Avatar

    IN KOTLIN error occurs when converting char to int using "Char.digitToInt()"

    Error src/main/kotlin/solution.kt:5:29: error: unresolved reference: digitToInt val list = num.map { it.digitToInt() }.toMutableList() ^

  • J253 Avatar

    Wow, this is one of those where just when you feel you solved it you find out you were not even close, mostly due to a misunderstanding of the mechanics that yield the next bigger number. Check inputs against expected output carefully! and add your own tests with large numbers. Great kata to challenge yourself with!

  • anatoliy.safonov Avatar

    It should work for random inputs too: 7745 should equal 7547 , but next bigger number should be 7754. 7547 < 7745

  • priskus Avatar

    Hi! Why do argument and returned types in C++ solution have type of long: long nextBigger(long n)? Whereas in tests I got enormous values of argument, such as 6922181194580306956, and max value of long is 2147483647 of course.

  • Rashwan-Mohamed Avatar

    This comment has been hidden.

  • GiuseppeSica Avatar

    Can you help me to figure out what does this error means?

    UndefinedBehaviorSanitizer:DEADLYSIGNAL ==1==ERROR: UndefinedBehaviorSanitizer: SEGV on unknown address 0x000000000000 (pc 0x00000042c030 bp 0x7ffd4839c200 sp 0x7ffd4839c1c0 T1) ==1==The signal is caused by a READ memory access. ==1==Hint: address points to the zero page. ==1==WARNING: invalid path to external symbolizer! ==1==WARNING: Failed to use and restart external symbolizer! #0 0x42c02f (/workspace/test+0x42c02f) #1 0x42581f (/workspace/test+0x42581f) #2 0x429268 (/workspace/test+0x429268) #3 0x4285a2 (/workspace/test+0x4285a2) #4 0x426dbe (/workspace/test+0x426dbe) #5 0x42662d (/workspace/test+0x42662d) #6 0x42631b (/workspace/test+0x42631b) #7 0x42bcd5 (/workspace/test+0x42bcd5) #8 0x42595d (/workspace/test+0x42595d) #9 0x7f4c5f37cbf6 (/lib/x86_64-linux-gnu/libc.so.6+0x21bf6) #10 0x404799 (/workspace/test+0x404799)

    UndefinedBehaviorSanitizer can not provide additional info. ==1==ABORTING

  • xx3l Avatar

    This comment has been hidden.

  • 0x3alex Avatar

    2017 can be 7210.. 2071 is not the biggest or Expected 123456798 but got 987654321 how woud a number starting with 1 be smaller, when it contains 9 ?!

  • LevapVeeskela Avatar

    This comment has been hidden.

  • hieunguyen512 Avatar

    Can someone show me how to shuffle number but not use list?

  • Feston229 Avatar

    Weird kata, don't recommend (

  • lucasweidas Avatar

    This comment has been hidden.

  • oxdium Avatar

    Bigger numbers: Time of your function -0.0001659393310546875 Time of your function -0.00020432472229003906

    Execution Timed Out (12000 ms)

    how it possible?

  • amiralnar Avatar

    When i.m trying to solve this kata in C i got passes all simple tests and then in random test i got this asser: 1204002415130177602 should be 1204002415130177206 Is is correct? I think that next bigger from "1204002415130177602" should be "1204002415130710267"

  • cuadchris Avatar

    This was difficult.

  • RAlexandr Avatar

    Hi everybody! Do any body knows Why result of 2017 is not 7210? It is mistake in example ?

  • Adiu Avatar

    This comment has been hidden.

  • tretjakan Avatar

    Test for javascript are completely not correct.

  • oliverboehme Avatar

    This comment has been hidden.

  • Plluxury Avatar

    did someone have troubles with number 1234567089? may be i wrong but the next bigger smaller number 1234567098, not 1234567908?

  • JeremyKimotho Avatar

    Any ideas why with the random tests my input is correct till last 3 digits which seemingly appear out of nowhere. For example:

    expected: 111222333444555678 actual : 111222333444555342

    All other tests are passing and this is C++.

    Edit: Ints in vector where digits are stored are correct, but when converting back to long at about 10^15 the unit, tens and hundreds value of long start getting changed by multiplication

  • maki_nori Avatar

    I can't complete the Kata because one of the tests are invalid for TypeScript.

    expected 1234567980 to equal 1234567908
               input            next biggest
    

    The input is larger than the test's output. The next biggest should be 1234569780

  • Supermedyk Avatar

    In file included from main.cpp:7: ./tests.cpp:7:22: error: use of undeclared identifier 'next_bigger_number' Assert::That(next_bigger_number(12), Equals(21)); ^ ./tests.cpp:8:22: error: use of undeclared identifier 'next_bigger_number' Assert::That(next_bigger_number(513), Equals(531)); ^ ./tests.cpp:9:22: error: use of undeclared identifier 'next_bigger_number' Assert::That(next_bigger_number(2017), Equals(2071)); ^ ./tests.cpp:10:22: error: use of undeclared identifier 'next_bigger_number' Assert::That(next_bigger_number(414), Equals(441)); ^ ./tests.cpp:11:22: error: use of undeclared identifier 'next_bigger_number' Assert::That(next_bigger_number(144), Equals(414)); ^ ./tests.cpp:12:22: error: use of undeclared identifier 'next_bigger_number' Assert::That(next_bigger_number(10990), Equals(19009)); ^ 6 errors generated.

  • Unnamed Avatar

    Incorrect function name in C++ sample tests.

  • feldmaarshal Avatar

    This comment has been hidden.

  • zh.guijjane Avatar

    The tests cases for Kotlin are completely wrong.

  • LS2008 Avatar

    This comment has been hidden.

  • Gardey Avatar

    Timed OutPassed: 7Failed: ?Exit Code: 1 it shows me that my code passed all the tests but failed is ? and its not shown

  • Scooter McGergens Avatar

    In order to output huge numbers I need to return a string otherwise php will truncate the integer.

    The test cases don't allow me to return strings though. I get: Failed asserting '21' is equal to 21.

    If I change to return integers I fail in the obvious way of not returning the full number.

  • artem-phys Avatar

    I liked this kata when i finally figured out the algorithm. It would be faster if there had more sophisticated examples, hinting the logic of such search.

  • Océdy Avatar

    I having an error Value Error: invalid literal for int() with base 10: ' ' Does this mean the string I want to transform in int has some apostrophes in it ? Or some spaces ? It doesn't look like it but I can't test the code to know the output so I'm not sure.

  • absolutezero13 Avatar

    I'm passing test cases but then getting execution time out while submitting. :/

  • JoshuaBones Avatar

    This comment has been hidden.

  • mamun111 Avatar

    This comment has been hidden.

  • RarogCmex Avatar

    Firstly my code can't do it within required 12 sec. Now all tests completed in 34ms! Yahhou!

  • Daniil-Demyanenko Avatar

    Maybe not in the subject, but I can't solve the problem: the keyboard shortcuts ctrl+c and ctrl+v do not work in codewars. More precisely, they work differently: ctrl + v to move the cursor to the end. How to fix it?

  • bayaaa Avatar

    This comment has been hidden.

  • Gubapw Avatar

    (next_bigger(2017),2071) must return 7210 // and a lot of anything test

  • devLana Avatar

    The problem many will have with this kata is figuring out how to rearrange the number to get the next bigger number. Once you figure that out, the solution should be straight forward.

  • mustafa1acar Avatar

    This comment has been hidden.

  • spyhere Avatar

    Please consider adding 1.5 for Kotlin, 1.3 is right from 2018. A little bit old...

  • campbellsoupbs Avatar

    My code seems to work with every number I input. However, it times out of the final tests. Any suggestions?

  • JustTanwa Avatar

    I had a bruce force solution which failed the random tests so refracted and managed to pass them all, feeling happy about it. So my question, do you only have to pass the test cases to complete the kata?

  • ts32023 Avatar

    Congratualtions to the author on quite a demanding kata. Two things would be worth adding in my opinion:

    1. Mention the timeouts and explain that brute force solution will not pass - some people might think this is a platform instability and not an intended "twist".
    2. Include one or two more complex examples upfront. The ones given are pretty trivial and don't convey the spirit of the assignment well.
  • agre5298 Avatar

    I love this kata. First I made it so that only basic tests came out, and then basic and random tests and finally all of them. I'm still weak in algorithms, but the time limitation gave this kata a kick.

  • jayantasamaddar Avatar

    This comment has been hidden.

  • mr.vstas Avatar

    This comment has been hidden.

  • maebli Avatar

    This comment has been hidden.

  • yudjinn Avatar

    I feel like the test cases are incorrect. 2071 => 7210, not 2710, no? 144 => 441, not 414.

  • kronk0s Avatar

    Giving better examples would be nice!

  • sainiboey Avatar

    This comment has been hidden.

  • pedrogalher Avatar

    This comment has been hidden.

  • uniapi Avatar

    Please, adapt the input up to LLONG_MAX (at least C, C++ and NASM) in order for this Kata to conform with its High Rank!

  • uniapi Avatar

    This comment has been hidden.

  • alexcodes Avatar

    i almost broke my head

  • krishkh Avatar

    My code keeps getting execution timed out how do i fix that ;-;

  • skucherenko Avatar

    Hi! Please add this anti-buteforce test case: Assert.AreEqual(9111111111111111111, Kata.NextBiggerNumber(1911111111111111111));

    Just tested, it causes execution timeout

  • monadius Avatar

    C: srand should be called only once.

  • dfhwze Avatar

    COBOL Translation please review carefully

  • AA-328 Avatar

    This comment has been hidden.

  • tegaete Avatar

    I'd expect it to have an elegan solution. That doesn't seem to be the case in Go.

  • A.Luanjai_Jr. Avatar

    i don't know what happend when i try to attempt my code it's show error like this

    • nextBigger(29666682040452) -> expected 92666682404052 to equal 29666682040524
    • nextBigger(3661) -> expected 6361 to equal 6136
    • nextBigger(123456789) -> expected 214365879 to equal 123456798
    • nextBigger(2877555444322111) -> No brute-force.: expected 8277555444322111 to equal 3111222444555778
    • and more on Bigger Number , Random test
      I have check the number on next one and if there bigger than the front one then i swap numbers and look for next before digit i already swap.
      Did i miss understand something if someone understand please give me advice.

    *** PS.Javascript ***

  • omarbassam88 Avatar

    This comment has been hidden.

  • leetnoob Avatar

    Execution Timed Out

  • tramov101 Avatar

    When I see an i64 in the sample code I know that whatever my first solution is, it is going to fail with an overflow somewhere and its back to the drawing board :-)

  • ignasiialemany Avatar

    This comment has been hidden.

  • div-donis Avatar

    This comment has been hidden.

  • Rnj-nj Avatar

    "Rearranging its digits" - is it about side-by-side digits only (like in all given examples)? Or is it about every digits in the number? I.e. is "2107" correct output for "2071" incoming, or "2701" only goes right?

  • chepch Avatar

    This comment has been hidden.

  • Voile Avatar

    This comment has been hidden.

  • saladuit Avatar

    I dont understand how this output should match: The expression (next_bigger_number(10990)) == (19009) is false. Shouldn't it be: (next_bigger_number(10990)) == (19090) Already resolved before posting:) while writing LOL

  • zaitsev1393 Avatar

    How is this next bigger number?

    It should work for random inputs too: expected 63778 to equal 37867

  • javiles91 Avatar

    This comment has been hidden.

  • harshvats2000 Avatar

    This comment has been hidden.

  • MoldaviaSolution Avatar

    Expected: 1234567908 But was: 1234567980

    Can someone hint me which is original number?

  • marcluque Avatar

    This comment has been hidden.

  • Kakdela99 Avatar

    This comment has been hidden.

  • logbox Avatar

    Testing for 263457394695 It should work for random inputs too: 263457394965 should equal 263457394956

    What? What is the logic determine the next big number? Unclear

  • Giovani-SantAna-Pedroso Avatar

    whenever a number passes the 17 digit the result goes crazy, for example the result is 123456789 my code goes well up to 12345678, when I add 9 the result became -51435483512, I'm using c

  • user9644768 Avatar

    Ruby 3.0 should be enabled.

  • PetarDambovaliev Avatar

    My solution fails for only 1 test input: 59884848459853 I have been burned so many times by the lack of quality checks and mistakes in codewars katas.

  • cschipg Avatar

    For those stuck, i found it helpful to visualize whats happening with a pen and paper.

  • myplacedk Avatar

    This is not about refactoring, please remove the tag.

  • oleksiiB Avatar

    This comment has been hidden.

  • Dayfer89 Avatar

    This comment has been hidden.

  • benayat Avatar

    This comment has been hidden.

  • BadProgrammer7 Avatar

    By rearranging for 2071 shoudl be (7210) which is the greatest number possible..Make your description clear..

  • Josh415 Avatar

    This comment has been hidden.

  • Konstantin.K Avatar

    Great kata, gives really good experience. For solution ideas try looking at test results..)

  • FArekkusu Avatar

    New test framework should be used in Python.

  • bubblecatchingbear Avatar

    This comment has been hidden.

  • dfhwze Avatar
  • 743627PDSB Avatar

    I think there is an issue with random test cases. The value wanted is less than the original value.

    Here are some examples of what I am talking about

    1234567980 should equal 1234567908 59884848495853 should equal 59884848483559 75530899033 should equal 75530893039

    Please correct me if am wrong.

    Thanks have a great day

  • claudioclaude Avatar

    This comment has been hidden.

  • Vellan Avatar

    This comment has been hidden.

  • MasterMarg Avatar

    This comment has been hidden.

  • kar-dim Avatar

    This comment has been hidden.

  • Aloa0001 Avatar

    This comment has been hidden.

  • hallsamuel90 Avatar

    Test cases appear to be broken for Typescript. Here are a few examples:

    expected nextBigger(2107) to equal 2071 expected nextBigger(214365879) to equal 123456798

    In both cases the expected number is less than the original.

  • victormartins Avatar

    This comment has been hidden.

  • Mxrcon Avatar

    This comment has been hidden.

  • oleksiiB Avatar

    This comment has been hidden.

  • RealKenshiro Avatar

    Very instructive Kata! Arigatou gozaimasu!

  • dasha2 Avatar

    This comment has been hidden.

  • rajparpani Avatar

    This comment has been hidden.

  • username0 Avatar

    For Rust

    A very minor issue where tests generate 'unused mut warning' for the line let mut slice = &mut digits[i..];

  • soumya_khatua Avatar

    This comment has been hidden.

  • d20master Avatar

    Working in C#. Code on my desktop runs in 74ms and timesout in codewars. Is this an issue that others are noticing?

  • return_max Avatar

    I got all of them right except the last one I got with 19090 isn't that the next bigger number?

    I have written it in Java

  • franciscomelov Avatar

    Python Test Passed Test Passed 7210 should equal 2071 Test Passed 441 should equal 414

    The solution that the program gives is not the biggest combination in some cases

  • user4045073 Avatar

    This comment has been hidden.

  • zsolt-szilagyi Avatar

    There is a trivial solution, that fails around n=10^9 due to runtime limitaitons.

    And there is an algorithm that you can easily demonstrate on paper for numbers around n=10^100.

  • eldlit Avatar

    There is this number in 'biggerTests' 59884848459853, isn't it too long for long? I mean when i try to test this one code in my IDE with this num it just throws an error. Anyway i guess permutations approach is not well for this kata...

  • dinkumsoftware Avatar

    A question. When my code (in python) times out in testing after 12s, I don't see any partial stdout/err output. I've tried flushing sys.stdout, writing to sys.stderr. Nothing seems to help. How can I see what test I'm failing on? I pass the first handful of test cases but don't see their stdout.

  • Darklight_dots Avatar

    This comment has been hidden.

  • LagomarsinoHS Avatar

    This comment has been hidden.

  • MrCasco Avatar

    This comment has been hidden.