Search results

  1. fukurou

    👨‍💻 dev AXPython pt2

    class Responder: # simple random response dispenser def __init__(self, *replies: str): self.responses: list[str] = [] for response in replies: self.responses.append(response) def getAResponse(self) -> str: if not self.responses: return...
  2. fukurou

    👨‍💻 dev AXPython pt2

  3. fukurou

    👨‍💻 dev AXPython pt2

    class Cycler: # cycles through numbers limit to 0 non-stop def __init__(self, limit: int): self.limit: int = limit self._cycler: int = limit def cycleCount(self) -> int: self._cycler -= 1 if self._cycler < 0: self._cycler = self.limit...
  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    👨‍💻 dev AXPython pt2

    class CombinatoricalUtils: # combo related algorithmic tools def __init__(self): self.result: list[str] = [] def _generatePermutations(self, lists: list[list[str]], result: list[str], depth: int, current: str): # this function has a private modifier (the "_" makes it...
  7. fukurou

    bruce lee

    @ZORO
  8. fukurou

    👨‍💻 dev AXPython pt2

    class AXNightRider: # night rider display simulation for LED lights count up than down def __init__(self, limit: int): self._mode: int = 0 self._position: int = 0 self._lim = 0 if limit > 0: self._lim = limit self._direction = 1...
  9. fukurou

    AXPython

    ''' PRIORITYQUEUE CLASS ''' # A simple implementation of Priority Queue # using Queue. class LGFIFO: def __init__(self): self.queue = [] def __str__(self): return ' '.join([str(i) for i in self.queue]) # for checking if the queue is empty def isEmpty(self)...
  10. fukurou

    🎮gaming pokemon scarlet and vaiolet new ride :)

    Corviknight (M) @ Expert Belt Ability: Mirror Armor Shiny: Yes Tera Type: Flying EVs: 252 Atk / 252 Def / 4 SpD Adamant Nature - Brave Bird - Drill Peck - Bulk Up - Screech
  11. fukurou

    🎮gaming pokemon scarlet and vaiolet new ride :)

    Skeledirge @ Aguav Berry Ability: Blaze Tera Type: Fire EVs: 4 HP / 252 SpA / 248 SpD / 4 Spe Modest Nature - Belch - Torch Song - Sunny Day - Shadow Ball
  12. fukurou

    🎮gaming pokemon scarlet and vaiolet new ride :)

    Chi-Yu @ Wide Lens Ability: Beads of Ruin Tera Type: Fire EVs: 252 HP / 252 SpA / 4 Spe Modest Nature IVs: 0 Atk - Fire Blast - Fire Blast - Nasty Plot - Reflect
  13. fukurou

    🎮gaming pokemon scarlet and vaiolet new ride :)

    we should use koraidon + chi yu
  14. fukurou

    🎮gaming pokemon scarlet and vaiolet new ride :)

    when do you want to catch him ? today?
  15. fukurou

    AXPython

    from __future__ import annotations from LivinGrimoireCoreV2 import * import random class AlgDispenser: # super class to output an algorithm out of a selection of algorithms def __init__(self, *algorithms: Algorithm): super().__init__() self._algs: list[Algorithm] = []...
  16. fukurou

    AXPython

    package AXJava; import LivinGrimoire.Algorithm; import java.util.ArrayList; import java.util.Random; // (*)Algorithm Dispensers public class AlgDispenser { // super class to output an algorithm out of a selection of algorithms private ArrayList<Algorithm> algs = new...
  17. fukurou

    [MEDIA]

Top