https://chatgpt.com/share/68f0c4f4-d8b8-8003-90a0-1091ca06dbb5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class NumberFilter { | |
constructor(numbers) { | |
this.numbers = numbers; | |
} | |
getOdd() { | |
return this.numbers.filter(n => n % 2 !== 0); | |
} | |
getEven() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# main.py | |
import os | |
import asyncio | |
import aiosqlite | |
import re | |
from typing import List, Optional, Dict, Any | |
from aiogram import Bot, Dispatcher, F | |
from aiogram.types import ( | |
Message, |