Code Monkey home page Code Monkey logo

ft_containers_ultimate_tester's Introduction

Hi there ๐Ÿ‘‹ I'm Theo


About me

I used to be a pastry chef for ten years, and I'm now at 42 school.

  • ๐Ÿ”ญ Iโ€™m currently a student at 42, in Lyon, France
  • ๐ŸŒฑ I am proficient in C and CPP languages.
  • ๐Ÿ•ต I'm learning cybersecurity at home
  • ๐Ÿ›  I've also learned docker and NestJS.
  • ๐ŸŽฏ Currently looking for an internship in cybersecurity

ย 

ft_containers_ultimate_tester's People

Contributors

b-bischoff avatar cybattis avatar maxenceliboz avatar tarchimb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

ft_containers_ultimate_tester's Issues

All functions done

Map tests functions:


  • range_constructor
  • default_constructor
  • copy_constructor

  • operator_equal

  • iterators
  • reverse_iterators Working on it: mliboz

  • operator_brackets Working on it: mliboz

  • insert
  • insert_range
  • insert_hint
  • erase_key
  • erase
  • erase_range
  • swap Working on it: mliboz
  • clear Working on it: mliboz

  • key_comp Working on it: mliboz
  • value_comp Working on it: mliboz

  • find
  • count
  • lower_bound
  • upper_bound
  • equal_range

  • get_allocator Working on it: mliboz

operator< and operator++ of testStruct are wrong

TestStruct operator++() {
TestStruct tmp = *this;
a = a + 1; (<- use "a" = instead of "tmp.a =")
b = b + 1; (<- use "b" = instead of "tmp.b =")
c = c + c; (<- use "c" = instead of "tmp.c =")
return tmp;
}

friend bool operator<(const TestStruct &lhs, const TestStruct &rhs) {
if (lhs.a >= rhs.a) (<- use ">=" instead of ">")
return false;
if (lhs.b >= rhs.b) (<- use ">=" instead of ">")
return false;
if (lhs.c >= rhs.c) (<- use ">=" instead of ">")
return false;
return true;
}

Feat(): Check description

  • test_for_type for max_size
  • Initialize array (int, int / TestStruct, int / TestStruct, TestStruct)
  • fix find
  • Upper bound
  • Merge splitted common
  • Use map generation on all functions

Logs folder removed on ctrl+c

If the tester is stuck on an infinite loop (due to containers errors), the only way to stop the test is to ctrl+c causing the logs folder to be removed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.