User Profile

Collapse

Profile Sidebar

Collapse
kiskiller0
kiskiller0
Last Activity: Jun 21 '18, 10:34 PM
Joined: Jun 21 '18
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • kiskiller0
    started a topic Type Hinting
    in PHP

    Type Hinting

    Type Hinting Cannot be used to require a parameter to be of a particular scalar type (such as integer or string or to have a particular trait.
    _Programming Php_
    code:

    <?php
    function yeld(int $a){
    print $a;
    }
    random(5);
    random("hey");
    ?>

    output:
    5
    Fatal error: Uncaught TypeError: Argument 1 passed to random() must be of the type integer,...
    See more | Go to post

  • kiskiller0
    replied to Faster search algorithm for lists
    I would use this big list to build sub_lists , one sub_list for each letter , thus , reducing the search time by almost 26 times (in average) , I don't know if python's built-in search functions do that or just loop through every element.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...