Search results

  1. fukurou

    oh this ?

    public void open(int minutes) { Date now = new Date(); openedGate = addMinutesToJavaUtilDate(now, minutes); } in java it is an inferred this actually so the program reads it as public void open(int minutes) { Date now = new Date(); this.openedGate =...
  2. fukurou

    current state regexutil

    ''' ----------------- REGEXUTIL ---------------- ''' import re from typing import Match, Pattern from collections import Counter from math import sqrt class Point: def __init__(self, x_init, y_init): self.x = x_init self.y = y_init def shift(self, x, y): self.x...
  3. fukurou

    numberRegex fixed

    def numberRegex(self, str2Check: str) -> str: theRegex = r"[-+]?[0-9]*[.,][0-9]*" list1: list[str] = [] regexMatcher = re.search(theRegex, str2Check) if (regexMatcher != None): return regexMatcher.group(0).strip() return ""
  4. fukurou

    addressing issues

    ''' ----------------- REGEXUTIL ---------------- ''' import re from typing import Match, Pattern from collections import Counter from math import sqrt class Point: def __init__(self, x_init, y_init): self.x = x_init self.y = y_init def shift(self, x, y): self.x...
  5. fukurou

    addressing issues

    continue work from this code as many errors were modified : use explicit variables see line 226 numberRegex("hello-789.998world")) # err : doesn't return decimal value (should be -789.998) print("The regexChecker2 method should return ?: ", regex.regexChecker2(r"[-+]?[0-9]{1,13}"...
  6. fukurou

    [MEDIA]

  7. fukurou

    test

  8. fukurou

    RegexUtil pointRegex example

    import re from math import sqrt class Point: def __init__(self, x_init, y_init): self.x = x_init self.y = y_init def shift(self, x, y): self.x += x self.y += y def __repr__(self): return "".join(["Point(", str(self.x), ",", str(self.y)...
  9. fukurou

    nintendo switch games

  10. fukurou

    nintendo switch games

  11. fukurou

    uma musume app

    :shrug:
  12. fukurou

    hmm

  13. fukurou

    hmm

    import re from math import sqrt class Point: def __init__(self,x_init,y_init): self.x = x_init self.y = y_init def shift(self, x, y): self.x += x self.y += y def __repr__(self): return "".join(["Point(", str(self.x), ",", str(self.y)...
  14. fukurou

    uma musume app

    באסה שאין מקום
  15. fukurou

    uma musume app

    this game is region blocked so you probably cant see it on your app store you need to DL an app called taptap 1st than DL uma musume pretty derby from there @ZORO
  16. fukurou

    pointRegex

    public Point pointRegex(String str2Check) { // "[-+]?[0-9]{1,13}(\\.[0-9]*)?" for double numbers String theRegex = "[-+]?[0-9]{1,13}"; Point result = new Point(0, 0); ArrayList<String> list = new ArrayList<String>(); Pattern checkRegex =...
  17. fukurou

    [MEDIA]

  18. fukurou

    [MEDIA]

  19. fukurou

    atelier ryza 2 speedrun

  20. fukurou

    [MEDIA]

Top