Python Coding Transposition Ciphers (PicoCTF 2022 #27 'transposition-trial')

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024

Комментарии • 15

  • @jairunet
    @jairunet 2 года назад +9

    Nice to see the great things you can do with Python3, simply awesome!

  • @FVT-tn8ji
    @FVT-tn8ji 2 года назад +1

    Your solution is amazing! This is how you can tell that you are a senior dev and really know Python. I started programming in Java so there's a slight to Python but I would have overcomplicated the whole code. Thanks for the CTF videos!

  • @greyether777
    @greyether777 2 года назад

    Quick & simple trick. Thanks for sharing it with us John!!

  • @benary5620
    @benary5620 2 года назад

    In which video do you / does John explain, what exactly the 'finish' command does? I can only guess it will do something like move (rename) the current directory to '_COMPLETED'. I have a spaghetti idea on how to do this, but as a mere hobbyist, I'd like to know the proper method.

  • @lordspacecake5565
    @lordspacecake5565 2 года назад +1

    Great series!

  • @spokenenglishmentsbd9998
    @spokenenglishmentsbd9998 Год назад

    Mind blowing

  • @rkgnanesh5465
    @rkgnanesh5465 2 года назад

    I can watch this all day john❤️

  • @AmanPatel-rv2it
    @AmanPatel-rv2it 2 года назад

    Watching!!

  • @omgpizza4174
    @omgpizza4174 2 года назад +1

    First! Good job john

  • @micleh
    @micleh Год назад

    I gather from all the videos I've seen so far that you are fond of python. I wonder whether you also consider this language essential for students that are into ICT and that this language should be compulsory. I know that people may argue that any computer language will do, but just as western nations have by and large agreed on English being the primary language, I think python might be the way to go.
    Sadly, in Germany, ICT students do not actually have to learn any computer language, and it is up to the teacher whether he teaches one. In the upper sixth form (students aged 16-18(19), Java is compulsory.

  • @alimustafa2682
    @alimustafa2682 2 года назад

    Who can solve it in 2 lines ??

    • @TigerWalts
      @TigerWalts 2 года назад

      How about 1? Ignoring reading the file and all that.
      decoded = "".join([ message[i-1] if i % 3 else message[i+2] if i+2 < len(message) else "" for i in range(len(message)) ])

    • @clorets4509
      @clorets4509 8 месяцев назад

      ​@@TigerWalts damn

    • @clorets4509
      @clorets4509 8 месяцев назад +1

      ​@@TigerWalts daaaaaaaaaaaamnnnnn