2022-04-28

Материал из DISCOPAL
Перейти к: навигация, поиск
Строка 4: Строка 4:
 
* Литкодовские должны решаться.
 
* Литкодовские должны решаться.
 
** [[Участник:Hakob/chef and strings]]
 
** [[Участник:Hakob/chef and strings]]
 +
 +
* Codechefские скорее да, но надо смотреть. Spoj-могут быть проблемны.
 
** [[Участник:Hakob/prime-digits]]  
 
** [[Участник:Hakob/prime-digits]]  
 +
 +
* Профилирование
 +
 +
python -m cProfile -s cumulative mycode.py < bigcase.txt  >profile.log
 +
 +
* Отладка в VSCode
 +
 +
        {
 +
            "name": "mycode",
 +
            "type": "python",
 +
            "request": "launch",
 +
            "program": "mycode.py",
 +
            "console": "integratedTerminal",
 +
            "justMyCode": true,
 +
            "args": ["<", "mycode.txt"]
 +
        },
 +
 +
  
 
* [[:Категория:На_проверку]]
 
* [[:Категория:На_проверку]]

Версия 06:12, 28 апреля 2022

Так делать не надо:

  • Профилирование
python -m cProfile -s cumulative mycode.py < bigcase.txt  >profile.log
  • Отладка в VSCode
       {
           "name": "mycode",
           "type": "python",
           "request": "launch",
           "program": "mycode.py",
           "console": "integratedTerminal",
           "justMyCode": true,
           "args": ["<", "mycode.txt"]
       },



  • Розыгрыш «хор»-зачета за баллы.
  • Двойной выигрыш → «отл»


Если что не получилось — посмотрите, там дальше ссылка с видео



Поразбираем: