Skip to content
View DoCTheBest01's full-sized avatar
👨‍💻
I code the fuck out of you
👨‍💻
I code the fuck out of you

Block or report DoCTheBest01

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. AlirezaAbediniCSharpSupplementary AlirezaAbediniCSharpSupplementary Public

    C#

  2. AlirezaAbediniPythonFoundomentals AlirezaAbediniPythonFoundomentals Public

    Python

  3. docthebest01.github.io docthebest01.github.io Public

    HTML

  4. homeworks homeworks Public

    C++

  5. CSharp Nth Root Function CSharp Nth Root Function
    1
    public static Type Root<Type>(dynamic number, int root) where Type : struct
    2
    {
    3
     const double epsilon = 1e-10; // Tolerance level for convergence
    4
     Type guess = (Type)Convert.ChangeType(number / root, typeof(Type)); // Initial guess
    5